home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sprite 1984 - 1993
/
Sprite 1984 - 1993.iso
/
src
/
machserver
/
1.098
/
vm
/
vmSwapDir.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-09-12
|
708b
|
28 lines
/*
* vmSwapDir.h --
*
* Definitions for the swap directory monitor.
*
* Copyright (C) 1985 Regents of the University of California
* All rights reserved.
*
*
* $Header: /sprite/src/kernel/vm/RCS/vmSwapDir.h,v 1.1 90/09/11 10:45:16 shirriff Exp $ SPRITE (Berkeley)
*/
#ifndef _VMSWAPDIR
#define _VMSWAPDIR
/*
* The name of the swap directory.
*/
#define VM_SWAP_DIR_NAME "/swap/"
extern void Vm_OpenSwapDirectory _ARGS_((ClientData data, Proc_CallInfo *callInfoPtr));
extern void VmReopenSwapDirectory _ARGS_((void));
extern Fs_Stream *VmGetSwapStreamPtr _ARGS_((void));
extern void VmDoneWithSwapStreamPtr _ARGS_((void));
extern Boolean VmSwapStreamOk _ARGS_((void));
#endif /* _VMSWAPDIR */